home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 1 / The Games Machine - Ita - CD-ROM Vol.01.rar / XENIA1A.ISO / fifademo / install.bat < prev    next >
DOS Batch File  |  1994-06-10  |  2KB  |  95 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo.
  6. echo            * * * FIFA INTERNATIONAL SOCCER DEMO * * *
  7. echo.
  8. echo.
  9. echo            A.......Install Demo
  10. echo            B.......View instructions & Playing tips
  11. echo            C.......Exit.
  12. echo.
  13. echo.
  14. what c "Enter Selection > "ABC
  15. if %WHAT%==A Goto install
  16. if %WHAT%==B goto readme
  17. if %WHAT%==C goto exit
  18. :install
  19. cls
  20. echo.
  21. echo * * Hard Disk Install * *
  22. echo.
  23. echo Enter Drive letter to install demo to (EG. C ).
  24. echo.
  25. what c "Enter Drive Letter > "
  26. echo.
  27. cls
  28. echo.
  29. echo Now Installing FIFA DEMO to %what%\Fifademo
  30. echo.
  31. echo To run this demo in the future, be in the Fifademo
  32. echo directory and Type : FIFA (enter)
  33. echo.
  34. echo Please wait.....
  35. echo.
  36. if exist %what%\fifademo\install.bat goto error
  37. md %what%:\fifademo
  38. copy demo.exe %what%:\fifademo
  39. copy install.bat %what%:\fifademo
  40. copy what.exe %what%:\fifademo
  41. copy browse.com %what%:\fifademo
  42. copy readme.txt %what%:\fifademo
  43. %what%:
  44. cd\fifademo
  45. demo.exe -d
  46. del demo.exe
  47. cls
  48. echo.
  49. echo            * * SOUND SELECT * *
  50. echo.
  51. echo            A.......Soundblaster
  52. echo            B.......No Sound
  53. echo            C.......Exit
  54. echo.
  55. echo            Note: Type 'Sound' to re-select sound once demo has installed.
  56. echo.
  57. what c "Enter Selection > "ABC
  58. echo.
  59. cls
  60. if %WHAT%==A Goto sound
  61. if %WHAT%==B goto nosound
  62. if %WHAT%==C goto exit
  63.  
  64. :sound
  65. copy fifa.bak fifa.cfg
  66. fifa
  67. goto end
  68.  
  69. :nosound
  70. copy fifa.bak fifa.cfg
  71. del fifa.cfg
  72. fifa
  73. goto end
  74.  
  75. :readme
  76. browse readme.txt
  77. goto start
  78.  
  79. :error
  80. cls
  81. echo.
  82. echo You seem to have already installed the FifaDemo.  To re-install
  83. echo this demo, please delete the FIFADEMO subdirectory from your
  84. echo %what% drive and run Install again.
  85. echo.
  86. goto end
  87.  
  88. :exit
  89. cls
  90. echo.
  91. echo Dos me up.......
  92. echo.
  93. goto end
  94. :end
  95.